home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Solitaire / Sources / Spider / SpiderDrawDelegate.h < prev    next >
Text File  |  1994-01-18  |  779b  |  28 lines

  1. /* indent:4  tabsize:8  font:fixed-width */
  2.  
  3.  
  4. /*---------------------------------------------------------------------------
  5. | ---------------------------------------------------------------------------
  6. |
  7. |    SpiderDrawDelegate : Object
  8. |
  9. | ----------------------------------------------------------------------------
  10. \----------------------------------------------------------------------------*/
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. @interface SpiderDrawDelegate:Object
  15. {
  16.     id gameCardPiles[10];
  17. }
  18.  
  19. /*----------------------------------------------------------------------------
  20. |
  21. |    CardPileView delegation methods
  22. |
  23. \---------------------------------------------------------------------------*/
  24.  
  25. - setGameCardPileViews:(id *)theViews;
  26. - clickedCard:aCard in:drawCardPileView;
  27.  
  28. @end